Add manual refresh toggle to dashboard widgets#651
Merged
multiplex55 merged 1 commit intomasterfrom Jan 8, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
refresh_interval_setting.Refreshbutton and settings-driven refresh behavior still force an immediate refresh even when auto-refresh is disabled.Description
refresh_interval_settingto accept amanual_refresh_only: &mut boolparameter and add an "Only manual refresh" checkbox to the settings UI.manual_refresh_only: boolfield (with#[serde(default)]) to each affected widget config and set the backward-compatible default tofalsein theDefaultimpls for those configs.refresh_pending: boolfield to each updated widget and update refresh logic so widgets skip automatic refreshes whenmanual_refresh_onlyis true but still perform immediate refreshes on headerRefreshor when settings change by usingrefresh_pending.pinned_query_results,query_list,system_actions,system_status,window_list,windows_overview,process_list, andbrowser_tabsto store and honor the flag and to keep cache interval and invalidation behavior.Testing
Codex Task